home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form6
- BorderStyle = 1 'Fixed Single
- Caption = "Save?"
- ClientHeight = 975
- ClientLeft = 5250
- ClientTop = 4650
- ClientWidth = 3420
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 177
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Icon = "SAVE.frx":0000
- LinkTopic = "Form6"
- MaxButton = 0 'False
- MinButton = 0 'False
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 975
- ScaleWidth = 3420
- Begin VB.CommandButton no
- BackColor = &H80000005&
- Caption = "No"
- Height = 375
- Left = 1680
- TabIndex = 2
- Top = 480
- Width = 1575
- End
- Begin VB.CommandButton Yes
- BackColor = &H80000005&
- Caption = "Yes"
- Default = -1 'True
- Height = 375
- Left = 120
- TabIndex = 1
- Top = 480
- Width = 1455
- End
- Begin VB.Label Label1
- BackStyle = 0 'Transparent
- Caption = "Confirm Save:"
- Height = 255
- Left = 240
- TabIndex = 0
- Top = 120
- Width = 1335
- End
- Attribute VB_Name = "Form6"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Sub no_Click()
- Unload Me
- Form7.Visible = True
- End Sub
- Sub Yes_Click()
- Dim l0022 As Variant
- Dim l0026 As Variant
- l0022 = Form1.main.Text
- l0026 = Form7.path.Caption + "\" + Form7.filename.Text
- Open l0026 For Output As #1
- Print #1, l0022
- Close #1
- Unload Me
- End Sub
-